February 22, 2022
주어진 숫자 중 3개의 수를 더했을 때 소수가 되는 경우의 개수를 구하려고 합니다. 숫자들이 들어있는 배열 nums가 매개변수로 주어질 때, nums에 있는 숫자들 중 서로 다른 3개를 골라 더했을 때 소수가 되는 경우의 개수를 return 하도록 solution 함수를 완성해주세요.
문제가 쉬워서 따로 계획은 작성하지 않았습니다.
const makeDecimal = nums => {
let count = 0
for (let i = 0; i < nums.length; i++) {
for (let j = i + 1; j < nums.length; j++) {
for (let l = j + 1; l < nums.length; l++) {
if (isPrime(nums[i] + nums[j] + nums[l])) {
count += 1
}
}
}
}
return count
}
const isPrime = n => {
for (let i = 2; i <= Math.sqrt(n); i++) {
if (n % i == 0) {
return false
}
}
return true
}
test('makeDecimal', () => {
expect(makeDecimal([1, 2, 3, 4])).toBe(1)
})
test('isPrime', () => {
expect(isPrime(7)).toBe(true)
expect(isPrime(6)).toBe(false)
})